home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 8542 / 8542.xpi / chrome / lastpass.jar / content / chooseprofilecc.xul < prev    next >
Extensible Markup Language  |  2010-02-14  |  1KB  |  36 lines

  1. <?xml version="1.0"?>
  2. <?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
  3. <!DOCTYPE dialog SYSTEM "chrome://lastpass/locale/lastpass.dtd">
  4.  
  5. <dialog id="LPChooseProfileCC"
  6.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  7.         buttons="accept,cancel"
  8.         ondialogaccept="return LP.lpchooseprofilecc_accept_click(document,window);"
  9.         ondialogcancel="return LP.lpchooseprofilecc_cancel_click();"
  10.         onload="LP.lpchooseprofilecc_window_load(document,window);">
  11.     
  12.     <script type="application/x-javascript" src="chrome://lastpass/content/getlp.js" />
  13.     
  14.     <vbox align="center">
  15.         <image src="chrome://lastpass/skin/icon.png" width="225" height="36" />
  16.     </vbox>
  17.     <spacer height="5"/>
  18.     
  19.     <hbox>
  20.         <groupbox>
  21.             <caption id="profilecaption"/>
  22.             <vbox id="profilebox" style="overflow: auto;" height="150">
  23.                 <radiogroup id="profilegroup"/>
  24.             </vbox>
  25.         </groupbox>
  26.         <groupbox>
  27.             <caption id="cccaption"/>
  28.             <vbox id="ccbox" style="overflow: auto;" height="150">
  29.                 <radiogroup id="ccgroup"/>
  30.             </vbox>
  31.         </groupbox>
  32.     </hbox>
  33.     
  34.     <checkbox id="alwayschooseprofilecc"/>
  35. </dialog>
  36.